home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / math / gle-3.000 / gle-3 / gle / config.cpp < prev    next >
C/C++ Source or Header  |  1995-02-07  |  825b  |  43 lines

  1. /* This routine builds the included part of the make file  config.i
  2.         cc -P config.cpp
  3.     make
  4.     make doutils 
  5.  */
  6.  
  7. /* You can override this with the environment varialbe GLE_TOP, 
  8.    be sure to put the trailing slash on. */
  9.  
  10. DEF_GLE_TOP = /usr/local/gle/
  11.  
  12. #ifdef ultrix
  13.     CC = gcc
  14.     CFLAGS = -w -Dunix
  15.     LIBS = -lm -lcursesX -ltermcap -lc 
  16.     XLIBS = -lm -lX11 -lcursesX -ltermcap -lc 
  17. #endif
  18. #ifdef sun
  19.     MEMMOVE = memmove.o
  20.     CC = gcc 
  21.     CFLAGS = -w -Dunix -DNOKEYPAD -DNOATTRIB -DBIGINDIAN
  22.     LIBS = -lm -lcurses -ltermcap -lc 
  23.     XLIBS = -lm -lX11 -lcurses -ltermcap -lc 
  24. #endif
  25. #ifdef aix
  26.     CC = xlc
  27.     LIBS =     -lm -lcurses -lc 
  28.     XLIBS = -lm -lX11 -lcurses -lc 
  29.     CFLAGS= -w -Dunix -DNOKEYPAD -DNOATTRIB -DBIGINDIAN
  30. #endif
  31. #ifdef xwindows
  32.     XGLE = gle_x
  33.     DXO = ../../d_x.o
  34.     XSURF = surf_x
  35. #endif
  36.  
  37. /* -ysymname to trace a symbol */
  38.  
  39.  
  40.  
  41.  
  42.  
  43.